// This program prints the proverb 
// "Now is the time for all good men to come to the aid of their party"
// in a function (procedure) called Proverb that is called by the main function

//PLACE YOUR NAME HERE

#include <iostream>
using namespace std;


void writeProverb();  //This is the prototype for the writeProverb function 

int main()
{

	// Fill in the code to  call the  writeProverb function

	return 0;

}

//  *********************************************************************
//                           writeProverb
//   
//   task:     This function prints a proverb
//   data in:  none
//   data out: none
//
//   ********************************************************************


// Fill in the function heading and the body of the function that will print
// to the screen the proverb listed in the comments at the beginning of the 
// program


